home *** CD-ROM | disk | FTP | other *** search
/ Private Casting / Casting One.mdf / Docs / Success.dir / 00018.ls < prev    next >
Encoding:
Text File  |  1997-01-22  |  631 b   |  24 lines

  1. on mouseEnter
  2.   cursor([cast "curs", cast "mask"])
  3.   puppetSprite(the currentSpriteNum, 1)
  4.   puppetSprite(the currentSpriteNum + 1, 1)
  5.   set the blend of sprite the currentSpriteNum to 50
  6.   set the blend of sprite (the currentSpriteNum + 1) to 50
  7. end
  8.  
  9. on mouseLeave
  10.   cursor(-1)
  11.   set the blend of sprite the currentSpriteNum to 100
  12.   set the blend of sprite (the currentSpriteNum + 1) to 100
  13. end
  14.  
  15. on mouseUp
  16.   global docAnterior
  17.   set docAnterior to "success"
  18.   cursor(-1)
  19.   set the blend of sprite the currentSpriteNum to 100
  20.   set the blend of sprite (the currentSpriteNum + 1) to 100
  21.   go("clip", "bonus")
  22.   puppetSound(0)
  23. end
  24.